[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
VS_FileSel() Queries user for filename matching wildcard
Description:
VS_FileSel() allows you to query the user for a file name matching a
wildcard specification. The user will be able to move a light bar to
the filename that he/she wants to select within a pop-up non-screen
destructive window.
Syntax:
c_FileName = VS_FileSel( c_WildCard, n_Top, n_Left, n_MaxFiles,
c_Title, c_Footnote )
Pass:
c_WildCard is a character expression representing the wildcard of
files to display.
n_Top is a numeric value for the top row of the window.
n_Left is a numeric value for the left column of the window.
n_MaxFiles is a numeric value representing the maximum number of
files to display in the window.
c_Title is a character expression to be displayed at the top of
the window (offset to the left).
c_Footnote is a character expresstion to be displayed at the
bottom of the window (offset to the right).
Return:
c_FileName is a character expression containing the filename the
user selected
Notes:
Example:
c_FrmName = VS_FILESEL( "*.FRM", 5, 5, 15, "", "" )
IF .NOT. EMPTY(c_FrmName)
REPORT FORM &c_FrmName TO PRINT
ENDIF
Usage:
See Also:
VS_WIND()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson